home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmAbout
- Caption = "How to register "
- ClientHeight = 1320
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 4560
- LinkTopic = "Form1"
- ScaleHeight = 1320
- ScaleWidth = 4560
- StartUpPosition = 3 'Windows Default
- Begin VB.CommandButton Command1
- Caption = "OK"
- Height = 330
- Left = 3105
- TabIndex = 3
- Top = 855
- Width = 1410
- End
- Begin VB.Label Label2
- Caption = "email: biggieboysoft@usa.net"
- Height = 330
- Left = 135
- TabIndex = 2
- Top = 855
- Width = 2310
- End
- Begin VB.Label Label1
- Caption = "For Register Information, please visit us on the web"
- Height = 330
- Left = 135
- TabIndex = 1
- Top = 45
- Width = 4380
- End
- Begin VB.Label lblURL
- AutoSize = -1 'True
- Caption = "http://members.xoom.com/biggieboy"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 300
- Left = 135
- TabIndex = 0
- Top = 405
- Width = 4305
- End
- Attribute VB_Name = "frmAbout"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- #If Win32 Then
- Private Declare Function ShellExecute Lib _
- "shell32.dll" Alias "ShellExecuteA" _
- (ByVal hwnd As Long, _
- ByVal lpOperation As String, _
- ByVal lpFile As String, _
- ByVal lpParameters As String, _
- ByVal lpDirectory As String, _
- ByVal nShowCmd As Long) As Long
- #Else
- Private Declare Function ShellExecute Lib _
- "shell.dll" _
- (ByVal hwnd As Integer, _
- ByVal lpOperation As String, _
- ByVal lpFile As String, _
- ByVal lpParameters As String, _
- ByVal lpDirectory As String, _
- ByVal nShowCmd As Integer) As Integer
- #End If
- Private Sub iNetConn()
- URL = lblURL.Caption
- iret = ShellExecute(Me.hwnd, _
- vbNullString, _
- URL, _
- vbNullString, _
- "c:\", _
- SW_SHOWNORMAL)
- End Sub
- Private Sub Command1_Click()
- Unload Me
- End Sub
- Private Sub lblURL_Click()
- Call iNetConn
- End Sub
-